home *** CD-ROM | disk | FTP | other *** search
/ Sunday Savers: Sharing Fun! I Know My Savior Lives / Sunday Savers: Sharing Fun! I Know My Savior Lives.iso / mac / Xtras / PrintOMatic MX 1.7.3 / PrintOMatic MX (Classic) / -PrintOMatic MX Demo.dir / 00038.txt < prev    next >
Encoding:
Text File  |  2004-04-02  |  2.0 KB  |  30 lines

  1. Customizing the Print Progress Window
  2.  
  3. The following routines are used to customize the contents of PrintOMatic's Print Progress window. The setProgressMsg and setProgressPict routines are available to registered users of PrintOMatic only. Attempting to use these routines on an unregistered copy will result in an error.
  4.  
  5.     setProgressMsg        puts a customized text message in the progress window
  6.     setProgressPict        puts a customized bitmap image in the progress window
  7.     setProgressLoc        sets the location of the progress window
  8.     clearProgressLoc    resets the location of the progress window to centered on the screensetProgressMsg
  9.  
  10. Syntax:     setProgressMsg document, message
  11.  
  12. The setProgressMsg command puts a customized text message into the Print Progress window. This command is available to registered users of PrintOMatic only. Attempting to use this command on an unregistered copy will result in an error.
  13.  
  14. The default message in the print progress window is:
  15.  
  16.     Printing document "<document name>"
  17.  
  18. You can change the document's name using the setDocumentName command.setProgressPict
  19.  
  20. Syntax:    setProgressPict document, member pictCastMember
  21.  
  22. The setProgressPict command puts a customized image into the Print Progress window. This command is available to registered users of PrintOMatic only. Attempting to use this command on an unregistered copy will result in an error.setProgressLoc
  23.  
  24. Syntax:    setProgressLoc document, topLeftPoint
  25.  
  26. The setProgressLoc command sets the location of the top left corner of the print progress dialog displayed during printing. If you want to hide the print progress dialog, position it off the screen using this method. Note that setProgressLoc uses global (screen) coordinates for positioning, not stage coordinates.clearProgressLoc
  27.  
  28. Syntax:    clearProgressLoc document
  29.  
  30. The clearProgressLoc command resets the location of the print progress dialog to its default location, centered on the screen. Good to use if you want to show the progress dialog again after setting it offscreen with setProgressLoc.